home *** CD-ROM | disk | FTP | other *** search
- '*********************************************************
- ' Not all these functions are used in this program
- ' But were tested during the process.
- '*********************************************************
-
- Declare Function GetParent Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function GetTopWindow Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function GetWindowTask Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function IsWindow Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function IsWindowVisible Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function IsIconic Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function IsZoomed Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function IsWindowEnabled Lib "User" (ByVal hWnd As Integer) As Integer
- Declare Function IsChild Lib "User" (ByVal hWndParent As Integer, ByVal hWnd As Integer) As Integer
- Declare Function ShowWindow Lib "User" (ByVal hWnd As Integer, ByVal nCmdShow As Integer) As Integer
- Declare Function GetWindowText Lib "User" (ByVal hWnd As Integer, ByVal lpString As String, ByVal aint As Integer) As Integer
- Declare Function GetNextWindow Lib "User" (ByVal hWnd As Integer, ByVal Wflag As Integer) As Integer
-
- ' ShowWindow() Commands
- Global Const SW_HIDE = 0
- Global Const SW_SHOWNORMAL = 1
- Global Const SW_NORMAL = 1
- Global Const SW_SHOWMINIMIZED = 2
- Global Const SW_SHOWMAXIMIZED = 3
- Global Const SW_MAXIMIZE = 3
- Global Const SW_SHOWNOACTIVATE = 4
- Global Const SW_SHOW = 5
- Global Const SW_MINIMIZE = 6
- Global Const SW_SHOWMINNOACTIVE = 7
- Global Const SW_SHOWNA = 8
- Global Const SW_RESTORE = 9
-
- ' GetWindow() Constants
- Global Const GW_HWNDFIRST = 0
- Global Const GW_HWNDLAST = 1
- Global Const GW_HWNDNEXT = 2
- Global Const GW_HWNDPREV = 3
- Global Const GW_OWNER = 4
- Global Const GW_CHILD = 5
-
- Global Const FALSE = 0
- Global Const TRUE = -1
-
- ' BackColor, ForeColor, FillColor (standard RGB colors: form, controls)
- Global Const BLACK = &H0&
- Global Const RED = &HFF&
- Global Const GREEN = &HFF00&
- Global Const YELLOW = &HFFFF&
- Global Const BLUE = &HFF0000
- Global Const MAGENTA = &HFF00FF
- Global Const CYAN = &HFFFF00
- Global Const WHITE = &HFFFFFF
-
-